home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 4697 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.3 KB

  1. Path: news.texas.net!usenet
  2. From: Michael Douglass <mikedoug@texas.net>
  3. Newsgroups: comp.lang.c
  4. Subject: Re: simple code, argc, argv, strcmp()
  5. Date: Tue, 06 Feb 1996 10:06:15 -0600
  6. Organization: Texas Networking, Inc.
  7. Message-ID: <31177C77.167EB0E7@texas.net>
  8. References: <11f7cc$17261a.3b3@daprez> <4etj7c$bma@news.iag.net> <fcusack-0202961621470001@mudskipper.cac.psu.edu>
  9. NNTP-Posting-Host: millenium.texas.net
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 2.0 (X11; I; SunOS 4.1.4 sun4m)
  14.  
  15. > > >int main (int argc, char **argv) {
  16. > > >
  17. > > >  void Usage   (void);
  18. > > >  void Encode (int, char **);
  19. > > >  void Decode (int, char **);
  20. > > >
  21. > > >  if (!strcmp(argv[1],"-d") || !strcmp(argv[1],"-e")) {
  22. > > >    Usage();
  23. > > >  }
  24. > > <snip>
  25.  
  26. > argv[1] is always guaranteed to exist. It is simply NULL if there were no
  27. > arguments.
  28.  
  29. Even if this is so... You still do *not* want to call strcmp with a NULL pointer
  30. now do we?  Does that not make your argument moot, and make the previous point
  31. that you should always check argc to make sure that you *have* at least one argument
  32. a very good argument?
  33.  
  34. -- 
  35. Michael Douglass
  36. Texas Networking, Inc.
  37.  
  38. "I didn't change a thing and from the moment I didn't change it,
  39. it doesn't work anymore." -- Anonymous
  40.